home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 April / CHIP CD (4 - 2007).iso / beeld / 3d / ArtOfIllusion24-Mac.dmg / Art of Illusion / ArtOfIllusion.jar / bsh / commands / getResource.bsh < prev    next >
Text File  |  2005-05-23  |  353b  |  15 lines

  1. /**
  2.     Get a resource from the BeanShell classpath.
  3.     This method takes into account modification to the BeanShell class path via
  4.     addClassPath() and setClassPath();
  5. */
  6.  
  7. bsh.help.getResource = "usage: getResource( String name )";
  8.  
  9. import bsh.Interpreter;
  10.  
  11. URL getResource( String path ) 
  12. {
  13.     return this.interpreter.getClassManager().getResource( path );
  14. }
  15.